Two questions:
1. Looking through the kflop C programming API, I could not find a function to detect whether an axis is currently disabled. Is there one?
The reason I need this is that sometimes the kflop will automatically disable an axis e.g. when there is excessive following error. So my tool-changer code will continue on without being aware.
What I am planning to do is temporarily reduce the allowable following error so that it can effectively detect when there is excessive force on an axis (e.g. somebody manually inserted a tool in one of the slots, then the tool change program tries to put back another tool in that same slot).
2. On a related note, is there a function to kill another thread? In my case, when an estop is detected (which is done in my thread 1 supervisor), I would like it to kill all other threads, which would be much more robust than relying on all the other threads to stop what they are doing whenever they notice an estop condition, although that's the way I have programmed it now.
Failing that, is there a setjmp/longjmp I can link to? That would at least make it a bit cleaner to implement estop handling in each worker thread.